-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[기본과제/심화과제] 1주차 자바 객체지향 개념/ 은행 구현하기 #1
base: main
Are you sure you want to change the base?
The head ref may contain hidden characters: "1\uC8FC\uCC28"
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
자바 문법 잘 보고 갑니다!!
좀 치시네요 ~~~
//인스턴스 생성,힙에 할당되게 됩니당 | ||
wooriBank.deposit(1000); | ||
wooriBank.checkMoney(); | ||
wooriBank.withdraw(2000);// 에러 처리 발생~ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
굿굿!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다 !! 코드랑 주석 엄청 깔끔해서 이해하기 넘 편했어요-!
public interface Bank { | ||
public abstract void deposit(int money); | ||
|
||
|
||
|
||
public abstract void withdraw(int money); | ||
public abstract void checkMoney(); | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
옹 은행을 인터페이스로 만들기 이렇게도 활용할 수 있군여👏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅇㅈㅇㅈ그생각은못함
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생했슴둥!
public interface Bank { | ||
public abstract void deposit(int money); | ||
|
||
|
||
|
||
public abstract void withdraw(int money); | ||
public abstract void checkMoney(); | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅇㅈㅇㅈ그생각은못함
@Override | ||
public void withdraw(int money){ | ||
if(this.currentMoney-money<0){ | ||
System.out.println("잔고가 부족해 출금할 수 없습니다!"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅋ실생활에서 없으면 100억부자 가능ㅇ인데
많이 배워갑니다 :) LGTM |
🐕 과제 구현 명세
👨💻 기본 과제
📕 심화 과제
먼저, 은행의 기본기능인 조회, 출금, 입금 기능을 가지고 있는 Bank InterFace를 구현해주었습니당
그리고, Bank Interface를 implements 하여 제 주 거래 은행인 우리은행 클래스를 간단하게 만들어보았습니다. 정말 간단하지만, 그래도 현재 은행 보유금액이 0 이하일 경우 출금 할 수 없는 간단한 에러 핸들링을 넣어주었습니다.
그리고 마지막으로 이런 은행 시스템을 사용하는 유저를 구현하며 심화과제를 완료헀습니다~
🐥 이런 점이 새로웠어요 / 어려웠어요
사실 전공자이고, 이전의 자바 경험이 꽤 있어서 개념적인 부분에 자신이 있었는데, 오랜만에 자바를 쓰다보니 그래도 조금 가물가물한 개념들이 있었던 것 같아요!(특히 제네릭). 그 부분들에 대해서 본격적인 스프링 학습전에 큰 도움이 될 것 같습니다 :)
Java야 말로 객체지향 프로그래밍이라는게 가장 직접적으로 드러나는 언어라는 생각이 드는 과제였습니다 :)
생각과제는 추후 아티클 정리후 올리겠습니다!